ID Property (Field Object) 

The ID property returns the unique identifier of the object as a long integer. Read-only.

Syntax

objField.ID

Data Type

Long

Remarks

The Field object ID property is unique among identifier properties supported in the OLE Messaging Library. The Field object identifier is a long integer that corresponds to a MAPI property tag value. All other identifier properties are hexadecimal strings.

Example

' The ID property is a long value, not a string

' fragment from the function Field_ID()

'   verify that objOneField is valid, then access

    MsgBox "ID is high-order word: 0x" & Hex(objOneField.Id)

 

See Also

Type Property (Field Object)J34I44

Value Property (Field Object)RDXHN1